home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / iso8859_2.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  3KB  |  96 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """ Python Character Mapping Codec generated from '8859-2.TXT' with gencodec.py.
  5.  
  6. Written by Marc-Andre Lemburg (mal@lemburg.com).
  7.  
  8. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  9. (c) Copyright 2000 Guido van Rossum.
  10.  
  11. """
  12. import codecs
  13.  
  14. class Codec(codecs.Codec):
  15.     
  16.     def encode(self, input, errors = 'strict'):
  17.         return codecs.charmap_encode(input, errors, encoding_map)
  18.  
  19.     
  20.     def decode(self, input, errors = 'strict'):
  21.         return codecs.charmap_decode(input, errors, decoding_map)
  22.  
  23.  
  24.  
  25. class StreamWriter(Codec, codecs.StreamWriter):
  26.     pass
  27.  
  28.  
  29. class StreamReader(Codec, codecs.StreamReader):
  30.     pass
  31.  
  32.  
  33. def getregentry():
  34.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  35.  
  36. decoding_map = codecs.make_identity_dict(range(256))
  37. decoding_map.update({
  38.     161: 260,
  39.     162: 728,
  40.     163: 321,
  41.     165: 317,
  42.     166: 346,
  43.     169: 352,
  44.     170: 350,
  45.     171: 356,
  46.     172: 377,
  47.     174: 381,
  48.     175: 379,
  49.     177: 261,
  50.     178: 731,
  51.     179: 322,
  52.     181: 318,
  53.     182: 347,
  54.     183: 711,
  55.     185: 353,
  56.     186: 351,
  57.     187: 357,
  58.     188: 378,
  59.     189: 733,
  60.     190: 382,
  61.     191: 380,
  62.     192: 340,
  63.     195: 258,
  64.     197: 313,
  65.     198: 262,
  66.     200: 268,
  67.     202: 280,
  68.     204: 282,
  69.     207: 270,
  70.     208: 272,
  71.     209: 323,
  72.     210: 327,
  73.     213: 336,
  74.     216: 344,
  75.     217: 366,
  76.     219: 368,
  77.     222: 354,
  78.     224: 341,
  79.     227: 259,
  80.     229: 314,
  81.     230: 263,
  82.     232: 269,
  83.     234: 281,
  84.     236: 283,
  85.     239: 271,
  86.     240: 273,
  87.     241: 324,
  88.     242: 328,
  89.     245: 337,
  90.     248: 345,
  91.     249: 367,
  92.     251: 369,
  93.     254: 355,
  94.     255: 729 })
  95. encoding_map = codecs.make_encoding_map(decoding_map)
  96.